BACK TO LIST

Syntax:

YourStringVariable = VoiceAction1.Filter_Slot_Data_Weight

Details :

Slots are the no. of frequency changes and stress observed of particular Code. That is every slot will carry the data of Engine Category Code with stress on that code.

Filter_Slot_Data_Weight gives us the Engine Category Weight for that particular slot.

Examples :

Dim nni
Form1.Combo1.Clear
For nni = 1 To VoiceAction1.Filter_Filled_Slots
VoiceAction1.Send_of_no = nni

Form1.Combo1.AddItem VoiceAction1.Filter_Slot_Data & " " &  VoiceAction1.Filter_Slot_Data_Weight
Next nni

See SDK Example

BACK TO LIST